home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / comm / oh10a7.zip / CGI-WIN / WINCGI.BAT
DOS Batch File  |  1996-05-17  |  409b  |  14 lines

  1. @echo off
  2. echo HTTP/1.0 200 OK>> %3
  3. echo Content-type: text/plain>> %3
  4. echo.>> %3
  5. echo This is a WinCGI script implemented as a .BAT file.>> %3
  6. echo Typically WinCGI scripts are written as Windows applications,>> %3
  7. echo but this at least shows the basic idea of WinCGI.>> %3
  8. echo.>> %3
  9. echo This is the WinCGI file:>> %3
  10. type %1 >> %3
  11. echo.>> %3
  12. echo This is the POSTed data:>> %3
  13. type %2 >> %3
  14.